home *** CD-ROM | disk | FTP | other *** search
/ PC World 2006 February / PCWorld_2006-02_cd.bin / software / vyzkuste / triky / triky.exe / httrack-3.33.exe / {app} / src / htscache.h < prev    next >
C/C++ Source or Header  |  2004-04-07  |  3KB  |  74 lines

  1. /* ------------------------------------------------------------ */
  2. /*
  3. HTTrack Website Copier, Offline Browser for Windows and Unix
  4. Copyright (C) Xavier Roche and other contributors
  5.  
  6. This program is free software; you can redistribute it and/or
  7. modify it under the terms of the GNU General Public License
  8. as published by the Free Software Foundation; either version 2
  9. of the License, or any later version.
  10.  
  11. This program is distributed in the hope that it will be useful,
  12. but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14. GNU General Public License for more details.
  15.  
  16. You should have received a copy of the GNU General Public License
  17. along with this program; if not, write to the Free Software
  18. Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  19.  
  20.  
  21. Important notes:
  22.  
  23. - We hereby ask people using this source NOT to use it in purpose of grabbing
  24. emails addresses, or collecting any other private information on persons.
  25. This would disgrace our work, and spoil the many hours we spent on it.
  26.  
  27.  
  28. Please visit our Website: http://www.httrack.com
  29. */
  30.  
  31.  
  32. /* ------------------------------------------------------------ */
  33. /* File: httrack.c subroutines:                                 */
  34. /*       cache system (index and stores files in cache)         */
  35. /* Author: Xavier Roche                                         */
  36. /* ------------------------------------------------------------ */
  37.  
  38.  
  39.  
  40. #ifndef HTSCACHE_DEFH
  41. #define HTSCACHE_DEFH 
  42.  
  43. #include "htscore.h"
  44.  
  45. /* Library internal definictions */
  46. #ifdef HTS_INTERNAL_BYTECODE
  47.  
  48. // cache
  49. void cache_mayadd(httrackp* opt,cache_back* cache,htsblk* r,char* url_adr,char* url_fil,char* url_save);
  50. void cache_add(cache_back* cache,htsblk r,char* url_adr,char* url_fil,char* url_save,int all_in_cache);
  51. htsblk cache_read(httrackp* opt,cache_back* cache,char* adr,char* fil,char* save,char* location);
  52. htsblk cache_read_ro(httrackp* opt,cache_back* cache,char* adr,char* fil,char* save,char* location);
  53. htsblk cache_readex(httrackp* opt,cache_back* cache,char* adr,char* fil,char* save,char* location,char* return_save,int readonly);
  54. htsblk* cache_header(httrackp* opt,cache_back* cache,char* adr,char* fil,htsblk* r);
  55. void cache_init(cache_back* cache,httrackp* opt);
  56.  
  57. int cache_writedata(FILE* cache_ndx,FILE* cache_dat,char* str1,char* str2,char* outbuff,int len);
  58. int cache_readdata(cache_back* cache,char* str1,char* str2,char** inbuff,int* len);
  59.  
  60. int cache_wstr(FILE* fp,char* s);
  61. void cache_rstr(FILE* fp,char* s);
  62. char* cache_rstr_addr(FILE* fp);
  63. int  cache_brstr(char* adr,char* s);
  64. int  cache_quickbrstr(char* adr,char* s);
  65. int cache_brint(char* adr,int* i);
  66. void cache_rint(FILE* fp,int* i);
  67. int cache_wint(FILE* fp,int i);
  68. void cache_rLLint(FILE* fp,LLint* i);
  69. int cache_wLLint(FILE* fp,LLint i);
  70.  
  71. #endif
  72.  
  73. #endif
  74.